'test 1 of Simple Interpreter b+ 2021-02-08 converted to SB1 2021-02-14
.  Hello World, the next line shows off new command tab nColumns; a1; a2; a3; a4;..
tab 25;1;2;3;4;...
. 
.  Testing (semi-colon) output command that works same as PRINT x(with semi-colon after x)
;  Stop!   ;Halt!  ;End;
' stop print at next right position and Line Feed
. .
' now we should be printing on next line after Stop! line.
.  Am I on next line after End.
.
true = -1

' next line is fixed? Yes! must wrap variables in spaces because that is delimiter
' that was just one of problems I had with not now a function
false = not[ true ]

.  True equals ; true;.
.  So False must equal ; false;.
.
' the / is used to preserve the leading spaces in a print output command
' lets use it before an input line to see if we move the prompt right
; spc[8]
inps What is your name?; userName
' This was fixed when discovered one too many spaces between ? and variable, now put all you need
' the / is used to preserve the leading spaces in a print output command
. spc[8];Nice to meet you, ;  userName;.